using System;

namespace csintro {
	class helloWorld {
		static void Main(string[] args) {
			Console.WriteLine("Hello World!!");
		}
	}
}